home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / f2c / may_5_92.lha / f2c.VMay_5_1992 / libF77 / i_dim.c < prev    next >
C/C++ Source or Header  |  1992-05-07  |  89b  |  8 lines

  1. #include "f2c.h"
  2.  
  3. integer i_dim(a,b)
  4. integer *a, *b;
  5. {
  6. return( *a > *b ? *a - *b : 0);
  7. }
  8.